  body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #fff;
    margin: 0;
    padding: 0;
  }

  h2 {
    color: #333;
    font-weight: 600;
  }

  p {
    color: #fff;
  }
  .subheadline {
    color: #333;
  }

  .contact-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 2rem;
  }

  .contact-container h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }

  /* Form container */
  .contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 20px;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
  }

  input[type="text"],
  input[type="email"],
  select,
  textarea {
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: #2868a7;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  button {
    background-color: #2868a7;
    color: #fff;
    padding: 0.55rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  .submit {
    padding: 0.75rem 1.5rem;

  }

  button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      margin: 20px;
      padding: 1rem;
    }
  }

  .form-message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .form-message--success {
    background: #e6f4ea;
    color: #1e4620;
    border: 1px solid #b7e1c1;
  }

  .form-message--error {
    background: #fdecea;
    color: #611a15;
    border: 1px solid #f5c2c0;
  }

  .form-message p,
  .form-message li {
    color: inherit;
  }

  .form-message ul {
    margin: 0.5rem 0 0 1.25rem;
  }
